home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Sprite 1984 - 1993
/
Sprite 1984 - 1993.iso
/
src
/
machserver
/
1.098
/
Include
/
sun4c.md
/
vmMachStat.h
< prev
next >
Wrap
C/C++ Source or Header
|
1990-09-11
|
647b
|
28 lines
/*
* vmMachStat.h --
*
* The statistics structure for the Sun vm module.
*
* Copyright (C) 1986 Regents of the University of California
* All rights reserved.
*
*
* $Header: /sprite/src/kernel/vm/sun3.md/RCS/vmMachStat.h,v 9.0 89/09/12 15:23:57 douglis Stable $ SPRITE (Berkeley)
*/
#ifndef _VMMACHSTAT
#define _VMMACHSTAT
/*
* Statistics about Sun virtual memory.
*/
typedef struct {
int stealContext; /* The number of times that have to take
a context away from a process. */
int stealPmeg; /* The number of times that have to take a
pmeg away from a process. */
} VmMachDepStat;
#endif /* _VMMACHSTAT */